home *** CD-ROM | disk | FTP | other *** search
/ Software 2000 / Software 2000 Volume 1 (Disc 1 of 2).iso / utilities / u147.dms / in.adf / HintsAndTips / Example3.c < prev    next >
Encoding:
Text File  |  1991-05-25  |  380 b   |  16 lines

  1. /* Example 3 */
  2. /* This program will not open any console window if run from */
  3. /* workbench. The disadvantage is of course that you can not */
  4. /* use any "console functions" such as printf().             */
  5.  
  6. void _main();
  7.  
  8. void _main() /* Note the special character in front of main()! */
  9. {
  10.   int loop;
  11.  
  12.   /* Wait for a while: */
  13.   for( loop = 0; loop < 500000; loop++ )
  14.     ;
  15. }
  16.